home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / imengv3.41p2.lha / ImEngV3.41p2 / Notes / AddSpace.notes next >
Text File  |  2000-01-07  |  1KB  |  93 lines

  1.  
  2.  
  3. Image Engineer script - AddSpace v1.63
  4.  
  5.  
  6.  
  7. SHORT DESCRIPTION
  8.  
  9.   This script adds working space around picture.
  10.  
  11.  
  12. REQUIREMENTS
  13.  
  14.   Image Engineer v3.41 (Wision release 2)
  15.  
  16.  
  17. INSTALLATION
  18.  
  19.   Archive where this file came from should be extracted to a
  20.   directory where you installed Image Engineer.
  21.  
  22.   This script must be in IE:Arexx/
  23.  
  24.  
  25. USAGE
  26.  
  27.   Activate window of an image you want to add space around.
  28.  
  29.   Run the script and choose a background color for new space;
  30.   White, Black or Guess. Guess makes script to look for a pixel at
  31.   bottom right corner and uses it's color value as background.
  32.   Slider is used to set size of new space.
  33.  
  34.  
  35. ARGUMENTS
  36.  
  37.   AddSpace.rexx <pic> <bg> <space>
  38.  
  39.   <pic>    name of a picture (in IE)
  40.   <bg>     is one of following keywords:
  41.  
  42.             BLACK, WHITE or GUESS
  43.  
  44.   <space>  width of new space
  45.  
  46.  
  47.  
  48.   AmigaDOS
  49.  
  50.     Sys:Rexxc/RX AddSpace.rexx <arguments>
  51.     Sys:Rexxc/RX AddSpace.rexx 000_testpic.iff black 50
  52.  
  53.  
  54.  
  55.   Other scripts:
  56.  
  57.     ADDRESS COMMAND "Sys:Rexxc/RX IE:Arexx/AddSpace.rexx <arguments>"
  58.  
  59.     Next lines return you the name of new picture.
  60.  
  61.     PROJECT_LIST
  62.     xyz=result
  63.     pic=subword(xyz,1,1)
  64.  
  65.  
  66.  
  67.  
  68.  
  69. HISTORY
  70.  
  71.   1.63
  72.  
  73.   Cleaned up the code and fixed argument parsing.
  74.  
  75.   1.61
  76.  
  77.   Increased maximum size for extra space in pixels from 100 to 1000.
  78.  
  79.   1.60
  80.  
  81.   Script now changes zoom to value used before starting the script.
  82.  
  83.   1.59
  84.  
  85.   Script now saves last used values.
  86.  
  87.   1.55
  88.  
  89.   History started
  90.  
  91.  
  92.  
  93.